home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / clacrm.z / clacrm
Encoding:
Text File  |  2002-10-03  |  3.1 KB  |  133 lines

  1.  
  2.  
  3.  
  4. CCCCLLLLAAAACCCCRRRRMMMM((((3333SSSS))))                                                          CCCCLLLLAAAACCCCRRRRMMMM((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      CLACRM - perform a very simple matrix-matrix multiplication
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      SUBROUTINE CLACRM( M, N, A, LDA, B, LDB, C, LDC, RWORK )
  13.  
  14.          INTEGER        LDA, LDB, LDC, M, N
  15.  
  16.          REAL           B( LDB, * ), RWORK( * )
  17.  
  18.          COMPLEX        A( LDA, * ), C( LDC, * )
  19.  
  20. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  21.      These routines are part of the SCSL Scientific Library and can be loaded
  22.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  23.      directs the linker to use the multi-processor version of the library.
  24.  
  25.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  26.      4 bytes (32 bits). Another version of SCSL is available in which integers
  27.      are 8 bytes (64 bits).  This version allows the user access to larger
  28.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  29.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  30.      only one of the two versions; 4-byte integer and 8-byte integer library
  31.      calls cannot be mixed.
  32.  
  33. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  34.      CLACRM performs a very simple matrix-matrix multiplication:          C :=
  35.      A * B,
  36.      where A is M by N and complex; B is N by N and real;
  37.      C is M by N and complex.
  38.  
  39.  
  40. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  41.      M       (input) INTEGER
  42.              The number of rows of the matrix A and of the matrix C.  M >= 0.
  43.  
  44.      N       (input) INTEGER
  45.              The number of columns and rows of the matrix B and the number of
  46.              columns of the matrix C.  N >= 0.
  47.  
  48.      A       (input) COMPLEX array, dimension (LDA, N)
  49.              A contains the M by N matrix A.
  50.  
  51.      LDA     (input) INTEGER
  52.              The leading dimension of the array A. LDA >=max(1,M).
  53.  
  54.      B       (input) REAL array, dimension (LDB, N)
  55.              B contains the N by N matrix B.
  56.  
  57.      LDB     (input) INTEGER
  58.              The leading dimension of the array B. LDB >=max(1,N).
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. CCCCLLLLAAAACCCCRRRRMMMM((((3333SSSS))))                                                          CCCCLLLLAAAACCCCRRRRMMMM((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      C       (input) COMPLEX array, dimension (LDC, N)
  75.              C contains the M by N matrix C.
  76.  
  77.      LDC     (input) INTEGER
  78.              The leading dimension of the array C. LDC >=max(1,N).
  79.  
  80.      RWORK   (workspace) REAL array, dimension (2*M*N)
  81.  
  82. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  83.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  84.  
  85.      This man page is available only online.
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.